/* body {
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto Condensed', sans-serif;
    display: flex;
    flex-direction: column;
} */

@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

html, body {
    margin: 0;
    padding: 0;
    height: 100%; /* Garante que o body ocupe toda a altura */
    /* font-family: 'Nunito Sans', sans-serif; */
    font-family: 'Inter', sans-serif;
    background-color: #fff; /* Fundo branco para a parte direita se o painel não cobrir */
    color: #333;
    /* overflow: hidden; Evita barras de rolagem desnecessárias na página inteira */
}

/* Header 
header {
    background: white;
    padding: 20px;
    text-align: center;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: flex-start; 
    padding: 10px 20px;
}

.header-logo {
    width: 200px; 
    height: auto;
    margin-right: 15px; 
    max-width: 100%; /* Garante que a logo seja responsiva 
}*/

.login-container {
    background: rgba(255, 255, 255, 0.9); 
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: left;
    width: 400px;
    margin: 100px auto; /* Centraliza e evita que o conteúdo vá para a borda */
}

.pf-v5-c-login__container {
    flex: 1;   
    min-height: 70;
    display: flex;
    justify-content: center; 
    align-items: center;
    background: url('https://operacao.portaldecompraspublicas.com.br/18/img/img-banner.png') no-repeat center center; 
    background-size: cover; 
}

.pf-v5-c-login__container2 {
    flex: 1;   
    min-height: 70;
    display: flex;
    justify-content: center; 
    align-items: center;
    background: url('https://www.pcpdev.com.br/img/8GNCP-banner-home-desktop.png') no-repeat center center; 
    background-size: cover; 
}

/* .botao-login {
    background: #0BA8BC;
    color: white !important;
    border: none;
    padding: 10px;
    width: 50%;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    margin: 10px;
}

.botao-login a {
    color: #fff;
} */

.botao-container {
    display: flex;
    align-items: center;
    justify-content: center; 
    flex-direction: column;
    margin-bottom: 5px;
    gap: 12px;
}

.login-pf-signup span {
    color: #0BA8BC;
}

.login-pf-signup #kc-info-wrapper{
    color: #000000;
}

.login-container a {
    color: #0BA8BC;
}

.login-container span:not(.pf-m-warning span, .pf-m-success span){
    color: #000000;
    font-weight: bold;
    font-size: 14px;
}

.login-container p, .login-container li, .login-container label {
    color: black;
}

.login-container input {
    box-shadow: none !important; 
    outline: none; 
}

/* Footer */
/* footer {
    background: #333;
    color: white;
    text-align: left;
    padding: 20px;
    width: 100%;
    margin-top: auto;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: flex-start; 
    padding: 10px 20px;
    margin: 0;
}

.footer-logo {
    width: 200px; 
    height: auto; 
    margin-right: 15px; 
    position: relative;
    top: -50px; 
    max-width: 100%; /* Garante que a logo do footer seja responsiva 
} */

.contact p {
    font-size: 0.9rem;
    margin: 5px 0;
}

.contact strong {
    color: #0BA8BC;
}

/* Container principal (body ou div root) */
.login-pf body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Conteúdo principal (cresce para ocupar espaço disponível) */
.main-content {
    flex: 1;
}

/* Footer */
.custom-footer {
    margin-top: 2rem;  /* Espaçamento superior */
    text-align: center;
    padding: 1rem;
    background-color: #333;
    color: #fff;
}

/* Novo login */
/* SEU CSS EXISTENTE PARA LAYOUT GERAL (MANTENHA COMO ESTÁ) */
.page-container {
    display: flex;
    width: 100%;
}

.left-panel {
    flex: 0 0 45%;
    height: 100vh;
    /* background-image URL já está no seu HTML inline */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center left;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.fundo-img {
    background-repeat: no-repeat;
    background-position: center left;
    position: relative;
}

.hero-image {
    position: absolute;
    bottom: 0;
    left: 20%;  /* Você tinha 20% */
    max-width: 55%; /* Você tinha 55% */
    height: auto; /* Melhor para manter proporção se max-width for atingido */
    max-height: 70%; /* Adicionar uma altura máxima para não ficar muito grande */
    object-fit: contain;
}

.right-panel {
    flex: 1;
    display: flex;
    flex-direction: column; /* Para alinhar .login-form-wrapper e .redes-sociais verticalmente */
    justify-content: center;
    align-items: center;
    padding: 40px; /* Mais padding para dar espaço ao "card" */
    box-sizing: border-box;
    overflow-y: auto;
    min-height: 89vh;
}

/* --- CSS MODIFICADO PARA O FORMULÁRIO (ESTILO CARD BRANCO) --- */

.login-form-wrapper {
    width: 100%;
    max-width: 400px; /* Largura do card de login */
    background-color: #fff; /* Fundo branco do card */
    padding: 35px 30px; /* Espaçamento interno do card */
    border-radius: 10px; /* Bordas arredondadas do card */
    /* box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08); Sombra sutil do card */
    text-align: left;
    margin-top: 30px;
    border: 1px solid #BBE8ED;
}

/* Estilo para o Logo (ADICIONE O HTML CORRESPONDENTE NO SEU TEMPLATE .FTL) */
.login-logo-container {
    margin-bottom: 30px;
    text-align: left;
}
.login-logo-img { /* Se usar uma imagem para o logo */
    max-width: 200px;
    display: block;
}

/* Mensagens de Alerta do Keycloak (mantendo o estilo visual do card) */
/* Keycloak usa classes como properties.kcAlertClass e pf-m-danger/pf-m-success etc. */
/* Adapte os seletores abaixo para as classes exatas do seu tema Keycloak se necessário */
div[class*="kcAlertClass"] { /* Seletor genérico para pegar a classe de alerta */
    padding: 10px 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 0.9em;
}
div[class*="pf-m-danger"], div[class*="pf-m-error"] { /* Keycloak pode usar error ou danger */
    color: #721c24; background-color: #f8d7da; border-color: #f5c6cb;
}
div[class*="pf-m-success"] {
    color: #155724; background-color: #d4edda; border-color: #c3e6cb;
}
div[class*="pf-m-warning"] {
    color: #856404; background-color: #fff3cd; border-color: #ffeeba;
}
div[class*="pf-m-info"] {
    color: #0c5460; background-color: #d1ecf1; border-color: #bee5eb;
}


/* Estilos para os elementos do formulário DENTRO do .login-form-wrapper */
/* Use seletores mais específicos se necessário, baseados nas classes do Keycloak */
.login-form-wrapper form label,
.login-form-wrapper .pf-v5-c-form__group label { /* Adicionando classe de form-group do Keycloak */
    display: block;
    font-size: 0.9em;
    font-weight: 700;
    margin-bottom: 8px;
    color: #495057;
}

.login-form-wrapper form input[type="text"],
.login-form-wrapper form input[password], /* Keycloak pode usar input[password] em vez de input[type="password"] */
.login-form-wrapper form input[type="password"],
.login-form-wrapper form input[type="email"],
.login-form-wrapper .pf-v5-c-form-control { /* Adicionando classe de input do Keycloak */
    width: 100%;
    border: 1px solid #D0D0D0;
    /* border-radius: 6px; */
    background-color: #fff;
    font-size: 1em;
    box-sizing: border-box;
    color: #495057;
}

/* Remover margem do input se ele estiver dentro de um form-group que já tem margem */
.login-form-wrapper .pf-v5-c-form__group input {
    margin-bottom: 0;
}
/* Adicionar margem ao form-group em si */
.login-form-wrapper .pf-v5-c-form__group {
    margin-bottom: 15px;
}


.login-form-wrapper form input::placeholder { /* Keycloak inputs */
    color: #adb5bd;
}

.login-form-wrapper form input:focus { /* Keycloak inputs */
    outline: none;
    border-color: #00A9C6;
    box-shadow: 0 0 0 0.2rem rgba(0, 169, 198, 0.25);
}

/* Ícone de olho no campo de senha - REQUER HTML CUSTOMIZADO OU JS */
.password-input-container { /* Crie este wrapper em volta do input de senha e do ícone */
    position: relative;
}
.login-form-wrapper .password-input-container input[password],
.login-form-wrapper .password-input-container input[type="password"] {
    padding-right: 40px; /* Espaço para o ícone */
}
.password-toggle-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #777;
    font-size: 1.1em; /* Exemplo, se usar FontAwesome: <i class="fas fa-eye password-toggle-icon"></i> */
}


/* Opções abaixo do campo de senha (Lembrar e Esqueci senha) */
/* VOCÊ PRECISARÁ ENVOLVER O BLOCO DE "LEMBRAR-ME" E O LINK "ESQUECI SENHA" NUMA DIV COM ESTA CLASSE */
.form-login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 0.85em;
}

/* "Lembrar meu login" - Estilizando o #kc-remember-me do Keycloak */
#kc-remember-me { /* Wrapper do Keycloak para "Lembrar-me" */
    margin:0; /* Resetar margens se houver */
}
#kc-remember-me label.checkbox {
    color: #555e67;
    font-weight: normal;
    margin: 0; /* Resetar margens */
}
#kc-remember-me input[type="checkbox"] {
    margin-right: 8px;
    accent-color: #00A9C6;
    vertical-align: middle;
}

/* "Esqueci minha senha" - Estilizando o link #try-another-way do Keycloak */
/* #kc-select-try-another-way-form é o form, #try-another-way é o link <a> */
#kc-select-try-another-way-form {
    margin: 0;
    padding: 0;
}
#try-another-way { /* O link em si */
    color: #00A9C6;
    text-decoration: none;
    font-size: 1em; /* Para bater com "Lembrar meu login" */
    font-weight: normal;
    /* Remover classes de botão do Keycloak se aplicadas inline: */
    background: none !important;
    border: none !important;
    padding: 0 !important;
    display: inline !important; /* Para que não se comporte como bloco */
    margin: 0 !important;
}
#try-another-way:hover {
    text-decoration: underline;
}


/* Botão de login principal - Keycloak geralmente usa input[type="submit"] */
/* Ou um botão com classes como properties.kcButtonPrimaryClass */
.login-form-wrapper form input[type="submit"],
.login-form-wrapper form button[type="submit"],
.login-form-wrapper .botao-login { /* Classe de botão primário do Keycloak */
    width: 100%;
    padding: 12px;
    background-color: #F7A622; /* Laranja */
    color: #333333;
    border: none;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 0; /* Se .form-login-options já deu margem */
    text-transform: uppercase;
}
.login-form-wrapper form input[type="submit"]:hover,
.login-form-wrapper form button[type="submit"]:hover,
.login-form-wrapper .botao-login:hover {
    background-color: #e0a82d; /* Laranja mais escuro */
}

/* "Ainda não se cadastrou?" (ADICIONE O HTML CORRESPONDENTE NO SEU TEMPLATE .FTL) */
.signup-prompt-container {
    text-align: center;
    margin-top: 25px;
    font-size: 0.9em;
    color: #555e67;
}
.signup-prompt-container a {
    color: #00A9C6;
    font-weight: 700;
    text-decoration: none;
}
.signup-prompt-container a:hover {
    text-decoration: underline;
}

/* Estilos para a seção .redes-sociais (Central de Atendimento) - JÁ FORA DO .login-form-wrapper */
.redes-sociais {
    width: 100%;
    max-width: 400px; /* Mesma largura do login-form-wrapper para alinhamento */
    text-align: center;
    margin-top: 30px; /* Espaço após o card do formulário */
    padding: 0;
    font-size: 0.85em;
    color: #717171;
}
.central-de-atendimento {
    font-weight: normal;
    margin-bottom: 5px;
    color: #717171;
}
/* Seus estilos inline para os spans dos telefones já estão aplicando as cores corretas. */
/* Para garantir, podemos adicionar: */
.redes-sociais span[style*="font-weight:600"] { /* Telefones */
    font-weight: 700 !important;
    color: #00A9C6 !important; /* Azul-petróleo, como no link "Esqueci senha" */
}
.redes-sociais span[style*="color:#717171"] { /* Barra "|" */
    color: #adb5bd !important; /* Cinza mais claro */
    margin: 0 5px;
}

/* Removendo estilos do tema padrão do Keycloak que podem conflitar */
/* Isso é um pouco genérico, você pode precisar de seletores mais específicos */
#kc-header-wrapper, .login-pf-page-header {
    display: none !important; /* Esconde o header padrão do Keycloak se ele aparecer */
}
#kc-form-login { /* O form principal do Keycloak */
    margin: 0;
    padding: 0;
    gap: 0;
}

.info-wrapper {
    display: inline-block;
    position: relative;
    margin-left: 6px;
}

.info-icon {
    vertical-align: middle;
    cursor: pointer;
    display: inline-block;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: background-image 0.3s ease;
}

.info-icon:hover {
    background-image: url('../img/info-btn.svg') !important;
}

.tooltip {
    visibility: hidden;
    background-color: #035871;
    color: #fff;
    border: 1px solid #E9F8F9;
    border-radius: 8px;
    padding: 16px;
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);
    white-space: normal;
    width: 260px;
    font-size: 13px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 100;
    font-weight: 100;
}

.info-wrapper:hover .tooltip {
    visibility: visible;
}

/* Informacoes sobre o updatee senha */
.password-policy-requirements {
    margin-top: 10px;
    margin-bottom: 20px;
    background-color: #E9F8F9;
    padding: 10px 15px;
    border-radius: 4px;
    border: 1px solid #A3DFE7;
    font-size: 14px;
    color: #333333;
}

.password-policy-requirements p {
    font-weight: bold;
    margin-bottom: 5px;
}

.password-policy-requirements ul {
    list-style-type: disc;
    margin-left: 20px;
    padding-left: 0;
}

.password-policy-requirements li {
    margin-bottom: 3px;
}

@media (max-width: 900px) {
    .left-panel, .fundo-img{
        background-position: center left 80%;
    }
    .right-panel {
        padding: 20px;
        height: auto;
        min-height: calc(100vh - 250px); /* 250px é a altura do left-panel em telas menores */
    }
    .login-form-wrapper {
        padding: 25px 20px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .redes-sociais {
        margin-bottom: 20px;
    }
    .hero-image {
        max-width: 40%; /* Ajuste para telas menores */
        max-height: 80%; /* Ajuste para telas menores */
        left: 10%; /* Ajuste para telas menores */
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .left-panel{
        display: none;
    }

    .header-container {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        height: auto !important;
        padding: 16px;
    }

    .header-container div {
        /* display: flex;
        align-items: center;
        gap: 16px;
        padding: 16px; */
        gap: 9px !important;
    }

    .footer-container {
        justify-content: center;
        text-align: center;
    }

    .footer-logo {
        margin-bottom: 10px;
    }

    .login-container {
        width: 90%; /* Reduz a largura para se ajustar melhor em telas pequenas */
        margin: 20px; /* Diminui as margens para telas pequenas */
    }

    .botao-login {
        width: 100%; /* Garante que o botão ocupe toda a largura do container em telas pequenas */
    }
}

/* Para telas muito pequenas, como celulares */
@media (max-width: 480px) {
    .header-logo {
        width: 150px; /* Ajusta o tamanho da logo para telas muito pequenas */
    }

    .login-container {
        padding: 20px; /* Reduz o padding para mais espaço */
        width: 100%; /* Aumenta o tamanho do container de login */
        margin: 10px; /* Diminui as margens para telas menores */
    }
}

.input-senha-div {
    border: 1px solid #e9f8f9;
    border-radius: 16px;
    overflow: hidden;
}

.input-senha-div-filha {
    flex: 1;
    display: flex;
    align-items: center;
}

.input-senha-span {
    border: none !important;
    --pf-v5-c-form-control--after--BorderBottomWidth: 0 !important;
    --pf-v5-c-form-control--after--BorderBottomColor: transparent !important;
    width: 100%;
    display: block;
}

.input-senha-div-img {
    overflow: hidden;
}

.input-senha-button {
    --pf-v5-c-button--after--BorderColor: transparent !important;
    border: none;
    height: 100%;
    width: 100%;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

button img.input-senha-img,
button img.undefined {
    width: 24px;
    height: 24px;
    max-width: 24px;
    max-height: 24px;
}

.input-senha-input {
    border: none !important;
    margin: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    height: 100% !important;
    padding-left: 1rem;
}

input:focus {
    outline: none !important;
    box-shadow: none !important;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px white inset !important; /* cor do fundo */
    box-shadow: 0 0 0 1000px white inset !important;
    -webkit-text-fill-color: #000 !important; /* cor do texto */
}

input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
    box-shadow: 0 0 0 1000px white inset !important;
}

.titulo-label {
    color: #717171;
    font-size: 12px;
    font-weight: 400;
}

input::placeholder {
    font-size: 12px;
}

.esqueci-minha-senha {
    font-weight: 600;
    margin-top: 8px;
}
.esqueci-minha-senha a {
    font-size: 12px;
    color: #0085AC !important;
}

.pf-v5-c-form__helper-text{
    margin-top: 8px;
}

.input-username {
    border: 1px solid #e9f8f9 !important;
    border-radius: 16px !important;
    padding: 8px 1rem;
}

/* footer */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

body {
    font-family: 'Inter', sans-serif;
}


.footer-top {
    background-color: #0B273A;
    color: #FFFFFF;
    width: 100%;
}

.content {
    width: 80%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    padding: 3rem;         
}

.header-footer {
    border-bottom: 1px solid #FFFFFF80;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 3rem;
}

.footer-rede-social {
    display: flex;
    gap: 16px;
}

.parceiros {
    padding-bottom: 3rem;
    border-bottom: 1px solid #FFFFFF80;
    margin-top: 32px;
}

.parceiros h3 {
    margin-bottom: 49px;
}

.central-de-atendimento-footer h3 {
    margin-bottom: 16px !important;
}

.parceiros h3, .central-de-atendimento-footer h3 {
    font-family: Inter;
    font-weight: 800;
    font-style: Extra Bold;
    font-size: 32px;
    line-height: 120%;
    letter-spacing: 0%;
    font-family: Inter;
}

.logo-parceiros {
    display: flex;
    justify-content: space-around;
}

.container-central-de-atendimento {
    display: flex;
    justify-content: space-between;
    padding: 3rem 0;
    align-items: start;
}

.container-central-de-atendimento h3 {
    margin: 0;
}

.central-de-atendimento-footer span {
    font-weight: 800;
}

.atendimento-email {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.atendimento {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-atendimento p {
    margin: 0;
}

.titulo {
    font-weight: 800;
}

.email {
    text-decoration: underline;
}

.footer-bootom {
    background-color: #081E2D;
    color: #ffffff;
    padding: 40px 20px;
}

.section-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-bottom: 1px solid #FFFFFF80;
    padding-bottom: 40px;
    width: 100%;
}

.footer-column {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    min-width: 150px;
}

.footer-column h4 {
    color: #F7A622;
    font-weight: 600;
    margin: 10px 0;
    font-size: 16px;
}

.footer-column a,
.footer-column p {
    color: #ffffff;
    text-decoration: none;
    margin: 4px 0;
    font-size: 14px;
}

.footer-column a:hover {
    text-decoration: underline;
    }

    @media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 20px;
    }

    .footer-column {
            min-width: 100%;    
    }
}

.selos {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
        border-bottom: 1px solid #FFFFFF80;
    padding-bottom: 40px;
}

.iso {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.atc {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 50%;
}

.atc p {
    font-size: 10px;
    text-align: center;
}

.selos-img {
    margin-top: 40px;
    display: flex;
    width: 100%;
    justify-content: space-around;
    align-items: center;
}

.infos-site-footer {
    font-size: 13px;
    text-align: center;
    margin-top: 40px;
}


@media (max-width: 1000px) {
    .logo-parceiros {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .logo-parceiros a {
        flex: 1 1 40%;
        max-width: 120px;
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 780px) {
    .content {
        width: 90%;
        padding: 2rem 1rem;
    }

    .header-footer {
        flex-direction: column;
        gap: 16px;
        align-items: center;
        text-align: center;
    }

    .footer-rede-social {
        flex-wrap: wrap;
        justify-content: center;
    }

    .logo-parceiros {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        margin-top: 16px;
    }

    .container-central-de-atendimento {
        flex-direction: column;
        gap: 32px;
    }

    .info-atendimento {
        flex-wrap: wrap;
    }
    .atendimento {
        flex-direction: row;
        align-items: flex-start;
    }

    .atendimento-email {
        gap: 16px;
    }

    .section-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-column {
        width: 100%;
        margin-bottom: 24px;
    }

    .iso {
        flex-direction: column;
        gap: 24px;
    }

    .atc {
        width: 100%;
    }

    .selos-img {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .selo-bndes {
        width: 154px;
        height: 77px;
    } 
    
    .selo-govtech {
        width: 79.5px;
        height: 77px;
    }
    
    .selo-startout {
        width: 176px;
        height: 86px;
    }
    
    .selo-gptw {
        width: 111px;
        height: 85px;
    }

    .selo-abes {
        width: 82px;
        height: 105px;
    }

    .logo-parceiros a img {
        max-width: 80px;
        height: auto;
    }

    .infos-site-footer {
        font-size: 12px;
        padding: 0 10px;
    }

    footer img {
        max-width: 100%;
        height: auto;
    }
}

/* header */

.header-container {
    display: flex;
    align-items: center;
    height: 64px;
    background-color: #278AFF1A;
    color: #0085AC;
    width: 100%;
    justify-content: center;
    gap: 4px;
    font-size: 14px;
}

.header-container div {
    display: flex;
    align-items: center;
    gap: 4px;
}

.checkbox-rememberMe {
    display: flex !important;
    align-items: center;
    background-color: #F9F9FB;
    border-radius: 24px;
    padding: 8px;
    border: 1px solid #E9F8F9;
    cursor: pointer;
    border-radius: 16px;
    height: 48px;
    font-size: 16px !important;
    font-weight: 400 !important;
}

.checkbox-rememberMe input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border: 2px solid #ccc;
    border-radius: 8px;
    margin-right: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox-rememberMe input[type="checkbox"]:checked::before {
    content: "✔";
    font-size: 14px;
}

.checkbox-rememberMe span {
    font-size: 18px;
    color: #333;
}

/* Caixinha mensagem de recuperar senha */
.mensagem-recuperar-senha {
    background-color: #E7F9F4;
    border-radius: 6px;
    border: 1px solid #0BBC89;
    padding: 16px;
    width: 400px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mensagem-recuperar-senha p {
    color: #333;
    font-size: 14px;
    font-weight: 400;
}

.botao-voltar {
    background: none !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    text-transform: capitalize !important;
    text-align: center;
}

.info-recuperar-senha {
    display: flex !important; 
    justify-content: space-between !important;
}

.header-container-reset-password {
    display: flex;
    align-items: center;
    justify-content: start;
    height: 64px;
    background-color: #278AFF1A;
    color: #0085AC;
    width: 100%;
    font-size: 14px;
    gap: 1rem;
    padding: 16px 32px;
}

.title-reset-password{
    color: #0085AC !important;
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 600;
}

.back-to-login-link {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: #0085AC !important;
}

.error-message {
    padding: 16px !important;
    color: #333 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    border: 1px solid #ffcdcd !important;
    border-radius: 6px !important;
    background-color: #ffe0e0 !important;
}

.text-error-message {
    background-color: transparent !important;
    color: #a62e2e;
}

.update-password-error {
    border-radius: 16px !important;
    border: 1px solid #DC2626E5 !important;
    background: #FEE2E2 !important;
    align-items: anchor-center !important;
}

.update-password-error-span {
    font-size: 14px !important;
    font-weight: 400;
    color: #ae0000 !important;
}

.mensagem-mfa {
    background-color: #FFF7E9;
    border-radius: 6px;
    border: 1px solid #F7A622;
    padding: 16px;
    width: 400px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mfa-message-p{
    font-weight: 400;
    color: #717171;
}

.app-list-mfa {
    font-weight: 700;
    color: #717171;
}

.qr-code-img {
    width: 116px;
    height: 116px;
}

.label-mfa {
    display: flex !important;
    justify-content: space-between !important;
    width: 100%;
}

.text-input-mfa {
    color: #717171;
    font-weight: 400;
}

.div-input-mfa {
    border: 1px solid #e9f8f9;
    border-radius: 16px;
    overflow: hidden;
    background: white;
}

.div-input-mfa::before,
.div-input-mfa::after {
    content: none !important;
    display: none !important;
}

.input-mfa {
    border: transparent !important;
    padding: .5rem 1rem !important;
}

.btn-mfa {
    background-color: #F7A622 !important;
    padding: 15px;
    border: none;
    color: #333333;
    border-radius: 999px !important;
}

.btn-group-mfa {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.input-btn-mfa {
    width: 100%;
}

.kc-info-message{
    display: flex;
    align-items: left;
    flex-direction: column;
    gap: 10px;
}

.input-btn-info {
    margin-top: 20px;
    text-align: center;
}

.input-btn-info a {
    text-decoration: none;
}

.back-to-login-mfa {
    color: #7D7D7D;
    text-decoration: none;
}

.info-wrapper-mfa {
    position: relative;
    display: inline-block;
}

.custom-tooltip {
    visibility: hidden;
    opacity: 0;
    background-color: #035871;
    border: 1px solid #E9F8F9;
    color: #fff;
    text-align: left;
    border-radius: 8px;
    padding: 16px;
    position: absolute;
    z-index: 10;
    top: 125%;
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 0.2s ease-in-out;
    font-size: 12px;
    font-weight: 400;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    white-space: normal;
    width: max-content;
    max-width: 280px;
}

.info-wrapper-mfa:hover .custom-tooltip {
    visibility: visible;
    opacity: 1;
}

#kc-error-message {
    background-color: #FFEAEA;
    border-radius: 6px;
    border: 1px solid #ffbaba;
    padding: 16px;
    width: 400px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: column;
    width: 100%;
    text-align: center;
}

#kc-error-message p {
    color: #333333;
}
.requisitos-da-senha {
    margin-top: 20px;
}

.requisitos-da-senha li {
    color: gray;
    /* Exibir bullets padrão ao carregar a tela */
    list-style: inherit; /* herda "disc" do <ul> */
    margin-bottom: 4px;
    padding-left: 0; /* sem espaço extra até começar a validação */
}

.requisitos-da-senha li.valid {
    color: #008800;
    font-weight: 600;
    position: relative;
    /* Ao validar, trocar para ícone customizado */
    list-style: none;
    padding-left: 1.2em;
}

.requisitos-da-senha li.valid::before {
    content: "✔ ";
    color: #008800;
    position: absolute;
    left: -1.2em;
}

.requisitos-da-senha li.invalid {
    color: #ff3333;
    font-weight: 500;
    position: relative;
    /* Ao marcar como inválido, usar ícone customizado */
    list-style: none;
    padding-left: 1.2em;
}

.requisitos-da-senha li.invalid::before {
    content: "✖ ";
    color: #ff3333;
    position: absolute;
    left: -1.2em;
}

.hidden {
    display: none;
}

.page-container-otp {
    display: flex;
    width: 100%;
    height: auto;
    flex-direction: column !important;
}

.link-otp {
    color: #333333;
}

#loginRestartLink, #loginContinueLink {
    text-transform: lowercase;
    color: #333333;
    font-weight: 700;
}

#try-another-way {
    text-transform: none;
    color: #333333;
}

.btn-otp {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-otp {
    background-color: transparent !important;
    border: 1px solid #00A9C6 !important;
    padding: 8px !important;
    border-radius: 10px !important;
}

.btn-outra-conta-otp {
    background: none !important;
    text-transform: none !important;
    color: #7D7D7D !important;
    font-weight: 400 !important;
}

.btn-tente-outra-forma {
    color: #0085AC !important;
    font-weight: 500 !important;
    font-size: 14px !important;
}

.pf-v5-c-form {
    display: flex;
    flex-direction: column;
}

#kc-select-try-another-way-form {
    align-self: center;
}

.label-otp {
    display: flex !important;
    justify-content: space-between;
}

.input-username-otp {
    border: 1px solid #D4D4D4 !important;
    border-radius: 16px !important;
    padding: 8px 1rem;
    font-size: 1rem;
    width: 100%;
    outline: none;
    pointer-events: none;
    background-color: #F9F9FB;
}

.input-username-otp-readonly {
    background-color: #F9F9FB;
    color: #D4D4D4;
}

#kc-attempted-username {
    border: none;
}

.label-email-code {
    color: #333333 !important;
    font-weight: 400 !important;
}

.input-email-code {
    border: 1px solid #E9F8F9 !important;
    border-radius: 16px;
    padding: 8px;
}

.form-tente-outra-forma {
    text-align: center;
}

.select-authenticator-div {
    display: flex;
    flex-direction: column;
    gap: 1.7rem;
    align-items: center;
}

.info-otp {
    background-color: #FAFAEF;
    border-radius: 6px;
    border: 1px solid #F0F0D0;
    padding: 16px;
    font-weight: 400;
    font-size: 14px;
}

.info-otp span {
    font-weight: 700;
}

#input-error-otp-code {
    border-radius: 16px !important;
    border: 1px solid #DC2626E5 !important;
    background: #FEE2E2 !important;
    padding: 12px;
    text-align: center;
}

.titulo-da-pagina {
    color: #0085AC !important;
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 600;
}

.titulo-da-pagina-senha {
    color: #0085AC !important;
    font-size: 18px;
    margin-bottom: 0px;
    font-weight: 600;
}

.btn-email-code-form {
    background: none !important;
    text-transform: none !important; 
    font-weight: 600 !important;
    color: #0085AC !important;
    margin: 16px 0 0 !important;
    padding: 0 !important;
}

#kc-otp-login-form .pf-v5-c-form__group {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

#kc-otp-login-form {
    gap: 2rem;
}

input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
    display: none;
}

input[type="password"] {
  -ms-text-security: disc; /* fallback */
}

.title-config-totp {
    color: #0085AC !important;
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 600;
}

.back-to-application-btn {
    padding: 1rem 2rem !important;
}